projects
/
project
/
bcm63xx
/
u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
379c19a
)
omap/spl: change output of spl_parse_image_header
author
Simon Schwarz
<
[email protected]
>
Thu, 15 Mar 2012 04:01:39 +0000
(
04:01
+0000)
committer
Albert ARIBAUD
<
[email protected]
>
Tue, 27 Mar 2012 20:05:28 +0000
(22:05 +0200)
This only outputs "Assuming u-boot.bin..." if debug is active.
Signed-off-by: Simon Schwarz <
[email protected]
>
CC: Tom Rini <
[email protected]
>
CC: Stefano Babic <
[email protected]
>
CC: Wolfgang Denk <
[email protected]
>
arch/arm/cpu/armv7/omap-common/spl.c
patch
|
blob
|
history
diff --git
a/arch/arm/cpu/armv7/omap-common/spl.c
b/arch/arm/cpu/armv7/omap-common/spl.c
index 6b54ac7f018efe6c419f4acd54db2d14fd06ed80..963acb077611760a9e63b34e096f0ef39d444317 100644
(file)
--- a/
arch/arm/cpu/armv7/omap-common/spl.c
+++ b/
arch/arm/cpu/armv7/omap-common/spl.c
@@
-101,7
+101,7
@@
void spl_parse_image_header(const struct image_header *header)
/* Signature not found - assume u-boot.bin */
printf("mkimage signature not found - ih_magic = %x\n",
header->ih_magic);
-
puts
("Assuming u-boot.bin ..\n");
+
debug
("Assuming u-boot.bin ..\n");
/* Let's assume U-Boot will not be more than 200 KB */
spl_image.size = 200 * 1024;
spl_image.entry_point = CONFIG_SYS_TEXT_BASE;